{% extends 'base_dashboard.html' %} {% load site_tags %} {% block title %}Accounts Dashboard — {{ site_settings.institute_name }}{% endblock %} {% block content %}

Accounts Dashboard

Review course and certification payments. Teachers cannot see fees or earnings.

Course Admissions Cert Payments
{{ pending_enrollments }}
Pending course payments
{{ pending_cert_payments }}
Pending cert payments
{{ approved_enrollments }}
Approved enrollments
{{ certified_count }}
Issued certificates
Pending course admissions
View all
{% for e in recent_pending %}
{{ e.student.get_display_name }}
{{ e.course.title }} · {% format_price e.course.price %}
Review
{% empty %}

No pending course payments.

{% endfor %}
Pending certification fees
View all
{% for a in recent_cert_pending %}
{{ a.candidate.get_display_name }}
{{ a.program.title }} · {% format_price a.current_fee_due %}
Review
{% empty %}

No certification payments awaiting review.

{% endfor %}
{% endblock %}